part_aspect-models
Aspect models are mostly easy to create by transforming a company's internal data into the target aspect model. Transformations are mostly straightforward in these cases. If necessary, special steps in creating aspect models are mentioned in the corresponding sections.
In the following section, all aspect models that are part of Industry Core are documented.
Digital Twin Type | Aspect Model | Mandatory Version | Optional Versions | KIT |
---|---|---|---|---|
PartType | PartTypeInformation | 1.0.0 | Industry Core | |
SingleLevelBomAsPlanned | 3.0.0 | Industry Core | ||
SingleLevelUsageAsPlanned | 2.0.0 | Industry Core | ||
PartInstance | SerialPart | 3.0.0 | Industry Core | |
Batch | 3.0.0 | Industry Core | ||
JustInSequencePart | 3.0.0 | Industry Core | ||
SingleLevelBomAsBuilt | 3.0.0 | Industry Core | ||
SingleLevelUsageAsBuilt | 3.0.0 | Industry Core | ||
TractionBatteryCode | 1.0.0 | Traceability |
TractionBatteryCode
The aspect provides the information of the Traction battery code of a battery cell, a battery module or a battery pack according to the chinese standard GB/T 34014-2017. Furthermore, it provides the traction battery codes for the assembled sub parts of the component, e.g. Traction battery code of a battery module plus all the traction battery codes of the assembled battery cells of this battery module.
Aspect model in GitHub:
- Version 1.0.0: https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.traction_battery_code/1.0.0
Example: Submodel TractionBatteryCode
for a Battery Cell
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382320"
}
Example: Submodel TractionBatteryCode
for a Battery Module
{
"productType": "module",
"tractionBatteryCode": "B54MCPM27KLPCLE6A7519857",
"subcomponents": [
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382320"
},
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382321"
}
]
}
Example: Submodel TractionBatteryCode
for a Battery Pack
{
"productType": "pack",
"tractionBatteryCode": "4A6PCPM27KLPCLE742946319",
"subcomponents": [
{
"productType": "module",
"tractionBatteryCode": "B54MCPM27KLPCLE6A7519857",
"subcomponents": [
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382320"
},
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382321"
}
]
},
{
"productType": "module",
"tractionBatteryCode": "B54MCPM27KLPCLE6A7519858",
"subcomponents": [
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382322"
},
{
"productType": "cell",
"tractionBatteryCode": "X12CCPM27KLPCLE662382323"
}
]
}
]
}